#!/bin/bash

PKMKSHELLUTILITY=$1/Contents/Resources/pkmkshellutility

RESULT=`$PKMKSHELLUTILITY --sysctl hw.cputype`
if [ $RESULT != '7' ]; then
	exit 97
fi

RESULT=`$PKMKSHELLUTILITY --sysctl /System/Library/CoreServices/SystemVersion.plist`
if [ $RESULT < '10.4.8' ]; then
	exit 97
fi

exit 0